home *** CD-ROM | disk | FTP | other *** search
Wrap
VERSION 2.00 Begin Form frmAbout Caption = "About VBGPRINT" ClientHeight = 3810 ClientLeft = 1095 ClientTop = 1485 ClientWidth = 6510 Height = 4215 Left = 1035 LinkTopic = "Form2" ScaleHeight = 3810 ScaleWidth = 6510 Top = 1140 Width = 6630 Begin CommandButton cmdClose Caption = "&Close" Default = -1 'True Height = 375 Left = 2400 TabIndex = 1 Top = 3240 Width = 1695 End Begin Label Label3 Caption = "Unger Business Systems" Height = 1575 Left = 1560 TabIndex = 3 Top = 1440 Width = 4815 End Begin Label Label2 Caption = "Copyright (C) 1994 Unger Business Systems All rights reserved." Height = 375 Left = 120 TabIndex = 2 Top = 120 Width = 6255 End Begin Label Label1 Caption = "This demo program shows the capabilities of the VB Generalized Printer routines from Unger Business Systems. For more information or to register these routines, please contact:" Height = 735 Left = 120 TabIndex = 0 Top = 600 Width = 6255 End '---------------------------------------------------------------- 'Copyright 1994 Unger Business Systems All Rights Reserved 'This code is distributed as shareware. If you use it, you 'are required by law to register it. Please contact Unger 'Business Systems at 11926 Barrett Brae, Houston, TX 77072-4004 'or call (713) 498-8517. Registration fee is $20.00 US 'See the README.TXT file for more information 'All code, forms, modules, controls, etc. are provided without 'warranty or liability '---------------------------------------------------------------- Option Explicit Sub cmdClose_Click () Unload Me End Sub Sub Form_Load () Label3 = "Unger Business Systems" & CRLF & "11926 Barrett Brae" & CRLF & "Houston, TX 77072-4004" & CRLF & "Phone: (713) 498-8517" & CRLF & "Fax: (713) 498-8518" & CRLF & "CompuServe: Guinn Unger 71053,2332" End Sub